home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
programr
/
vbasic
/
subvbx.exe
/
SUBVBVW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-05-13
|
1KB
|
53 lines
// subvbvw.h : interface of the CSubvbxView class
//
/////////////////////////////////////////////////////////////////////////////
#include "subvbctl.h"
class CSubvbxView : public CFormView
{
protected: // create from serialization only
CSubvbxView();
DECLARE_DYNCREATE(CSubvbxView)
// Attributes
public:
CSubvbxDoc* GetDocument();
// Operations
public:
// Implementation
public:
virtual void OnInitialUpdate();
virtual ~CSubvbxView();
virtual void OnDraw(CDC* pDC); // overridden to draw this view
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Subclassed VBControl Object
CMyGrid m_MyGrid;
// Keeps track of first time OnIntialUpdate is called
BOOL m_bFirstUpdate;
// Generated message map functions
protected:
//{{AFX_MSG(CSubvbxView)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in subvbvw.cpp
inline CSubvbxDoc* CSubvbxView::GetDocument()
{ return (CSubvbxDoc*) m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////